Should We Implement It
Here's the Algorithm Pseudocode we just came up with:
days = # of days in month1 - day1 month1 += 1 while month1 < month2: days += # of days in month1 month1 += 1 days += day2 while year1 < year2: days += days in year1
Should we implement this algorithm?
Yes - this is correct
Yes - this doesn't address all cases, but is a good start
No - we should figure out how to address all cases first
No - we should try to find a simpler way